g_object_class_override_property (gobject_class, PROP_EDITING_CANCELED, "editing-canceled");
gtk_editable_install_properties (gobject_class, PROP_EDITING_CANCELED + 1);
+ /**
+ * GtkEntry:activate:
+ * @self: The widget on which the signal is emitted
+ *
+ * The ::activate signal is forwarded from the
+ * #GtkText::activated signal, which is a keybinding
+ * signal for all forms of the Enter key.
+ */
signals[ACTIVATE] =
g_signal_new (I_("activate"),
G_OBJECT_CLASS_TYPE (gobject_class),
g_object_class_install_properties (object_class, NUM_PROPERTIES, props);
gtk_editable_install_properties (object_class, NUM_PROPERTIES);
+ /**
+ * GtkPasswordEntry:activate:
+ * @self: The widget on which the signal is emitted
+ *
+ * The ::activate signal is forwarded from the
+ * #GtkText::activated signal, which is a keybinding
+ * signal for all forms of the Enter key.
+ */
signals[ACTIVATE] =
g_signal_new (I_("activate"),
G_OBJECT_CLASS_TYPE (object_class),
g_object_class_install_properties (object_class, NUM_PROPERTIES, props);
gtk_editable_install_properties (object_class, NUM_PROPERTIES);
+ /**
+ * GtkSearchEntry:activate:
+ * @self: The widget on which the signal is emitted
+ *
+ * The ::activate signal is forwarded from the
+ * #GtkText::activated signal, which is a keybinding
+ * signal for all forms of the Enter key.
+ */
signals[ACTIVATE] =
g_signal_new (I_("activate"),
G_OBJECT_CLASS_TYPE (object_class),
/**
* GtkText::activate:
- * @self: The self on which the signal is emitted
+ * @self: The widget on which the signal is emitted
*
* The ::activate signal is emitted when the user hits
* the Enter key.